home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex31.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  236 b   |  15 lines

  1. Program Example31;
  2.  
  3. { Program to demonstrate the Hi function. }
  4.  
  5. var
  6.   L : Longint;
  7.   W : Word;
  8.   
  9. begin
  10.   L:=1 Shl 16;     { = $10000 }
  11.   W:=1 Shl 8;      { = $100 }
  12.   Writeln (Hi(L)); { Prints 1 }
  13.   Writeln (Hi(W)); { Prints 1 }
  14. end.
  15.